home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 February: Tool Chest / Apple Developer CD Series Tool Chest February 1996 (Apple Computer)(1996).iso / Tool Chest / Development Tools & Languages / Macintosh Common Lisp Related / Lisp FAQ 14Sept94 / 4.Lisp implementations&contacts < prev    next >
Encoding:
Internet Message Format  |  1994-09-15  |  59.4 KB  |  [TEXT/ttxt]

  1. Subject: FAQ: Lisp Implementations and Mailing Lists 4/7 [Monthly posting]
  2. Newsgroups: comp.lang.lisp,news.answers,comp.answers
  3. Summary: Questions about Lisp Implementations and Mailing Lists
  4. Distribution: world
  5. Followup-To: poster
  6. Reply-To: ai+lisp-faq@cs.cmu.edu
  7. Approved: news-answers-request@MIT.Edu
  8.  
  9. Archive-name: lisp-faq/part4
  10. Last-Modified: Tue Sep 13 18:06:02 1994 by Mark Kantrowitz
  11. Version: 1.50
  12. Maintainer: Mark Kantrowitz and Barry Margolin <ai+lisp-faq@cs.cmu.edu>
  13. URL: http://www.cs.cmu.edu:8001/Web/Groups/AI/html/faqs/lang/lisp/top.html
  14. Size: 60871 bytes, 1111 lines
  15.  
  16. ;;; ****************************************************************
  17. ;;; Answers to Frequently Asked Questions about Lisp ***************
  18. ;;; ****************************************************************
  19. ;;; lisp_4.faq
  20.  
  21. This post contains Part 4 of the Lisp FAQ. 
  22.  
  23. If you think of questions that are appropriate for this FAQ, or would
  24. like to improve an answer, please send email to us at ai+lisp-faq@cs.cmu.edu.
  25.  
  26. Lisp/Scheme Implementations and Mailing Lists (Part 4):
  27.  
  28.   [4-0]   Free Common Lisp implementations.
  29.   [4-1]   Commercial Common Lisp implementations.
  30.   [4-1a]  Lisp to C translators
  31.   [4-2]   Scheme Implementations
  32.   [4-4]   Free Implementations of Other Lisp Dialects
  33.   [4-5]   Commercial Implementations of Other Lisp Dialects
  34.   [4-6]   What is Dylan?
  35.   [4-7]   What is Pearl Common Lisp?
  36.   [4-9]   What Lisp-related discussion groups and mailing lists exist?
  37.   [4-10]  ANSI Common Lisp -- Where can I get a copy of the draft standard?
  38.  
  39. Search for \[#\] to get to question number # quickly.
  40.  
  41. ----------------------------------------------------------------
  42. Subject: [4-0]   Free Common Lisp implementations.
  43.  
  44. Repositories of Lisp source code are described in the answer to
  45. question [6-1]. 
  46.  
  47. Remember, when ftping compressed or compacted files (.Z, .arc, .fit,
  48. etc.) to use binary mode for retrieving the files.
  49.  
  50.    CLiCC (Common Lisp to C Compiler) generates C-executables from Common
  51.    Lisp application programs. CLiCC is not a Common Lisp system, and
  52.    hence does not include any program development or debugging support.
  53.    CLiCC is intended to be used as an add-on to existing Common Lisp
  54.    systems for generating portable applications. (CLiCC has been tested
  55.    in Allegro CL, Lucid CL, CMU CL, CLISP, and AKCL. It should run in any
  56.    CLtL1 lisp with CLOS.)  CLiCC supports CL_0, a subset of Common Lisp +
  57.    CLOS, which excludes EVAL and related functions. At present CL_0 is
  58.    based on CLtL1, but is headed towards CLtL2 and ANSI-CL. The generated
  59.    C code (ANSI-C or K&R-C compatible) may be compiled using a
  60.    conventional C compiler on the target machine, and must be linked with
  61.    the CLiCC runtime library in order to generate executables. CLiCC has
  62.    a foreign function interface.  CLiCC is available by anonymous ftp from
  63.       ftp.informatik.uni-kiel.de:/pub/kiel/apply/clicc-0.6.4.tar.gz
  64.       [134.245.15.114].   
  65.    CLiCC was developed by Wolfgang Goerigk <wg@informatik.uni-kiel.de>,
  66.    Ulrich Hoffman <uho@informatik.uni-kiel.de>, and Heinz Knutzen
  67.    <hk@informatik.uni-kiel.de> of Christian-Albrechts-Universitaet zu
  68.    Kiel, Institut fuer Informatik und Praktische Mathematik,
  69.    Preusserstr.  1-9, D-24105 Kiel, Germany. The authors welcome
  70.    suggestions and improvements and would appreciate receiving email
  71.    even if you just used CLiCC successfully. For more information,
  72.    send mail to clicc@informatik.uni-kiel.de. 
  73.  
  74.    CLISP is a Common Lisp (CLtL1 + parts of CLtL2) implementation by
  75.    Bruno Haible of Karlsruhe University and Michael Stoll of Munich
  76.    University, both in Germany.  It runs on microcomputers (DOS, OS/2,
  77.    Atari ST, Amiga 500-4000) as well as on Unix workstations (Linux, Sun4,
  78.    Sun386, HP9000/800, SGI, Sun3 and others) and needs only 1.5 MB of RAM.
  79.    It is free software and may be distributed under the terms of GNU GPL.
  80.    German and English versions are available, French coming soon.  CLISP
  81.    includes an interpreter, a compiler, a subset of CLOS and, for some
  82.    machines, a screen editor. Packages running in CLISP include PCL and,
  83.    on Unix machines, CLX and Garnet.  Available by anonymous ftp from
  84.       ma2s2.mathematik.uni-karlsruhe.de:/pub/lisp/clisp/ [129.13.115.2]
  85.    For more information, contact haible@ma2s2.mathematik.uni-karlsruhe.de.
  86.    There is a mailing list for users of CLISP. It is the proper forum for
  87.    questions about CLISP, installation problems, bug reports, application
  88.    packages etc. For information about the list and how to subscribe,
  89.    send mail to listserv@ma2s2.mathematik.uni-karlsruhe.de, with the two lines
  90.           help
  91.           information clisp-list
  92.    in the message body.
  93.    A Sybase SQL interface interface for CLIPS is available
  94.    by anonymous ftp from wuarchive.wustl.edu:packages/clips2sybase/. For
  95.    more information, write to Sherry Steib <sherry@informatics.wustl.edu>.
  96.  
  97.    CMU Common Lisp (CMU CL) is free, and runs on HPs, Sparcs (Mach and SunOs),
  98.    DecStation 3100 (Mach), IBM RT (Mach) and requires 16mb RAM, 25mb
  99.    disk. It includes an incremental compiler, Hemlock emacs-style editor,
  100.    source-code level debugger, code profiler and is mostly X3J13
  101.    compatible, including the new loop macro.  It is available by anonymous
  102.    ftp from any CMU CS machine, such as ftp.cs.cmu.edu [128.2.206.173], in the
  103.    directory /afs/cs.cmu.edu/project/clisp/release. Login with username
  104.    "anonymous" and "userid@host" (your email address) as password. Due to
  105.    security restrictions on anonymous ftps (some of the superior
  106.    directories on the path are protected against outside access), it is
  107.    important to "cd" to the source directory with a single command.
  108.    Don't forget to put the ftp into binary mode before using "get" to
  109.    obtain the compressed/tarred files. The binary releases are
  110.    contained in files of the form
  111.                 <version>-<machine>_<os>.tar.Z
  112.    Other files in this directory of possible interest are
  113.    17e-source.tar.Z, which contains all the ".lisp" source files
  114.    used to build version 17e. A listing of the current contents of the
  115.    release area is in the file FILES. You may also use "dir" or "ls" to 
  116.    see what is available. Bug reports should be sent to cmucl-bugs@cs.cmu.edu.
  117.  
  118.    ECoLisp is a Common Lisp implementation which compiles Lisp functions
  119.    into C functions that use the C stack and standard procedure call
  120.    conventions. This lets Lisp and C code be easily mixed. It can be used
  121.    as a C library from any C application.  It is available by anonymous
  122.    ftp from 
  123.       ftp.di.unipi.it:/pub/lang/lisp/     [131.114.4.36]
  124.       ftp.icsi.berkeley.edu:/pub/ai/ecl/  [128.32.201.7]
  125.    as the file ecl-??.tar.gz where ?? is the version number. This is an alpha
  126.    release. So far it has been tested on Sun workstations (SunOS 4.x),
  127.    SGI (IRIX 4.x), and IBM PC (DOS/go32). For more information, please contact
  128.    Giuseppe Attardi <attardi@di.unipi.it> or <attardi@icsi.berkeley.edu>.
  129.  
  130.    GNU Common Lisp (GCL) is a free implementation of Common Lisp (CLtL1)
  131.    based originally on Austin Kyoto Common Lisp (AKCL). Versions 1.0
  132.    and above of GCL (aka versions 1-625 and above of AKCL) are
  133.    available under the GNU General Public Library License v2.0, and no
  134.    longer require the kcl.tar file to build the system. For
  135.    information on previous versions of AKCL, see the KCL entry. GCL
  136.    generates C code which it compiles with the local optimizing C
  137.    compiler (e.g., GCC).  It is intended to eventually support the
  138.    ANSI standard for Common Lisp. GCL runs on Sparc, IBM RT, RS/6000,
  139.    DecStation 3100, hp300, hp800, Macintosh II (under AUX), mp386, 
  140.    IBM PS2, IBM RT_AIX, Silicon Graphics 4d, Sun3, Sun4, Sequent
  141.    Symmetry, IBM 370, NeXT, Vax, and IBM PC 386/486 (linux, bsd).
  142.    GCL version 1.0 and above are available by anonymous ftp from  
  143.       ftp.cli.com:/pub/gcl/        [192.31.85.129]
  144.       math.utexas.edu:/pub/gcl/        [128.83.133.215]
  145.    as the file gcl-X.X.tgz (e.g., gcl-1.0.tgz), and from
  146.       rascal.ics.utexas.edu:/pub/akcl/     [128.83.138.20]
  147.    as the file akcl-X-X.tgz, where XX should be replaced with the version
  148.    number; you'll generally want the largest version number. The
  149.    bandwidth to rascal and math is higher than cli. For more information, write
  150.    to Bill Schelter <wfs@math.utexas.edu> (or <wfs@cli.com>,
  151.    <wfs@rascal.ics.utexas.edu>). 
  152.  
  153.    Kyoto Common Lisp (KCL) is free, but requires a license. Conforms to CLtL1.
  154.    KCL was written by T. Yuasa <yuasa@tutics.tut.ac.jp> and M. Hagiya
  155.    <hagiya@is.s.u-tokyo.ac.jp> at Kyoto University in 1984. Austin
  156.    Kyoto Common Lisp (AKCL) is a collection of ports, bug fixes and
  157.    improvements to KCL by Bill Schelter (<wfs@cli.com> or
  158.    <wfs@rascal.ics.utexas.edu>). Since 1994, AKCL versions 1-625 and
  159.    higher are covered by the GNU GPL, so generally one will generally
  160.    not need KCL (see GCL above for details). {A}KCL generates C code
  161.    which it compiles with the local C compiler. Both are available by
  162.    anonymous ftp from   
  163.       rascal.ics.utexas.edu:/pub/ [128.83.138.20]
  164.       ftp.cli.com:/pub/ [192.31.85.1]
  165.       utsun.s.u-tokyo.ac.JP:/pub/ [133.11.11.11]
  166.    KCL is in the file kcl.tar, and AKCL is in the file akcl-xxx.tar.Z
  167.    (take the highest value of xxx).  To obtain KCL, one must first sign
  168.    and mail a copy of the license agreement to: Special Interest Group in
  169.    LISP, c/o Taiichi Yuasa, Department of Computer Science, Toyohashi
  170.    University of Technology, Toyohashi 441, JAPAN. Runs on Sparc, IBM RT,
  171.    RS/6000, DecStation 3100, hp300, hp800, Macintosh II (under AUX),
  172.    mp386, IBM PS2, Silicon Graphics 4d, Sun3, Sun4, Sequent Symmetry, IBM
  173.    370, NeXT and Vax. A port to DOS is in beta test as
  174.    math.utexas.edu:/pub/beta2.zip. Commercial versions of {A}KCL are
  175.    available from Austin Code Works, 11100 Leafwood Lane, Austin, TX
  176.    78750-3409, Tel. 512-258-0785, Fax 512-258-1342, E-mail
  177.    guthery@acw.com, including a CLOS for AKCL. See also Ibuki, below.
  178.  
  179.    PowerLisp is a Common Lisp development environment for the Macintosh.
  180.    It consists of a Common Lisp interpreter, native-code 680x0 compiler,
  181.    680x0 macro assembler, disassembler, incremental linker and
  182.    multi-window text editor. It requires a Macintosh with at least a
  183.    68020 processor (any Mac except a Plus, SE or Classic) and system 7.0
  184.    or later. About 2 megabytes of RAM are required to run it, and to do
  185.    much with it you need more like 5 or 6 megabytes. Like any Common Lisp
  186.    system, the more memory the better.  PowerLisp has the ability to run
  187.    in the background. While executing a Common Lisp program, the user may
  188.    switch to another application as it continues to run. You can also
  189.    edit programs while a Common Lisp program is running. PowerLisp is
  190.    targeted to be compatible with CTLTL2 without CLOS (for now) but some
  191.    Common Lisp functions are not yet implemented. Upcoming versions
  192.    should include the remaining language features. The current released
  193.    version is 1.10. PowerLisp is available from America Online and Genie as a
  194.    shareware program ($50). It is also available from the Lisp
  195.    Repository, as
  196.       ftp.cs.cmu.edu:/user/ai/lang/lisp/impl/powerlsp/v1_10/powerlsp.hqx
  197.    Written by Roger Corman. For more information, send mail to
  198.    PowerLisp@aol.com, roger@island.com or rogerc34@aol.com (RogerC34
  199.    on America Online). 
  200.  
  201.    RefLisp is a small Lisp interpreter. Versions exist for MS-DOS and
  202.    UNIX (AIX). The MS-DOS version supports CGA/EGA/VGA graphics and the
  203.    Microsoft Mouse. The interpreter is a shallow-binding (i.e.,
  204.    everything has dynamic scope), reference counting design making it
  205.    suitable for experimenting with real-time and graphic user interface
  206.    programming. Common Lisp compatibility macros are provided, and most
  207.    of the examples in "Lisp" by Winston & Horn have been run on RefLisp.
  208.    RefLisp makes no distinction between symbol-values and
  209.    function-values, so a symbol can be either but not both.  RefLisp
  210.    comes with an ASCII manual and many demonstration programs, including
  211.    an analogue clock which never stops for garbage collection.  It is
  212.    written in ANSI C and is in the public domain. Source and binaries are
  213.    available in the Lisp Utilities repository by anonymous ftp from
  214.       ftp.cs.cmu.edu:/user/ai/lang/lisp/impl/reflisp/
  215.    For further information, send email to the author Bill Birch
  216.    <bxb@zikzak.apana.org.au>. 
  217.  
  218.    WCL is an implementation of Common Lisp for Sparc based workstations.
  219.    It is available free by anonymous ftp from 
  220.       cdr.stanford.edu:/pub/wcl/  [36.93.0.31]
  221.    as the files wcl2.2-solaris-src.tar.gz, wcl2.2-solaris-bins.tar.gz,
  222.    wcl2.2-sunos4-src.tar.gz, wcl2.2-sunos4-bins.tar.gz, and
  223.    wgdb4.2-sunos4.tar.gz. It includes a native solaris version (but with
  224.    no dynamic .o loading or wgdb yet...), can use any version of GCC 2.X
  225.    (GCC 2.1 is no longer required), and includes separate binary and
  226.    source distribution so that recompilation is no longer needed to
  227.    install WCL and WGDB. The wcl2.2-*.tar.gz files contain the WCL
  228.    distribution, including CLX and PCL; wgdb4.2-sunos4.tar.gz contains a
  229.    version of the GDB debugger which has been modified to grok WCL's
  230.    Lisp.  WCL provides a large subset of Common Lisp as a Unix shared
  231.    library that can be linked with Lisp and C code to produce efficient
  232.    and small applications. For example, the executable for a Lisp version
  233.    of the canonical ``Hello World!''  program requires only 40k bytes
  234.    under SunOS 4.1 for SPARC. WCL provides CLX R5 as a shared library,
  235.    and comes with PCL and a few other utilities.  For further information
  236.    on WCL, see the paper published in the proceedings of the 1992 Lisp
  237.    and Functional Programming Conference, a copy of which appears in the
  238.    wcl directory as lfp-paper.ps, or look in the documentation directory
  239.    of the WCL distribution. Written by Wade Hennessey
  240.    <wade@sunrise.stanford.edu>.  Please direct any questions to
  241.    wcl@sunrise.stanford.edu. If you would like to be added to a mailing
  242.    list for information about new releases, send email to
  243.    wcl-request@sunrise.stanford.edu.
  244.  
  245.    XLISP is free, and runs on the IBM PC (MSDOS), Amiga (AmigaDOS), 
  246.    Atari ST (TOS), Apple Macintosh, and Unix. It should run on anything 
  247.    with a C compiler.  It was written by David Michael Betz, 
  248.    167 Villa Avenue #11, Los Gatos, CA 95032, 408-354-9303 (H),
  249.    408-862-6325 (W), dbetz@apple.com. The reference manual was written by
  250.    Tim Mikkelsen. Version 2.0 is available by anonymous ftp from
  251.       cs.orst.edu:/pub/xlisp/ [128.193.32.1] or
  252.       sumex-aim.stanford.edu:/info-mac/lang/
  253.    Version 2.1g* is the same as XLISP 2.0, but modified by Tom Almy 
  254.    <toma@sail.labs.tek.com> to bring it closer to Common Lisp, in
  255.    addition to fixing several bugs. The latest version of XLISP can be
  256.    obtained by anonymous ftp from 
  257.       ftp.cs.cmu.edu:/user/ai/lang/lisp/impl/xlisp/ [128.2.206.173]
  258.    It may also be available (in possible older versions) from
  259.       ftp.biostr.washington.edu:/pub/xlisp      [128.95.10.115]
  260.       wasp.eng.ufl.edu:/pub                     [128.227.116.1]
  261.    A Macintosh port of version 2.1e (and the C source code to its
  262.    interface) is also available, from Macintosh ftp sites such as
  263.       sumex.stanford.edu:/info-mac/dev/xlisp-21e2.hqx
  264.       mac.archive.umich.edu:/mac/development/languages/xlisp2.1e2.sit.hqx
  265.    The Macintosh version was written by Brian Kendig, <bskendig@netcom.com>.
  266.    To obtain a copy through US mail, send email to Tom Almy,
  267.    toma@sail.labs.tek.com. A Windows version of the statistical
  268.    version of xlisp is available by anonymous ftp from
  269.       ftp.cica.indiana.edu:/util/wxlslib.zip
  270.    A version of XLISP-PLUS 2.1g that includes an experimental byte code 
  271.    compiler is available by anonymous ftp from
  272.       umnstat.stat.umn.edu:/pub/xlispstat/xlisponly/ [128.101.51.1]
  273.    as the file xlisp21gbc.tar.gz. Write to Luke Tierney <luke@stat.umn.edu>
  274.    for more information.
  275.  
  276. ----------------------------------------------------------------
  277. Subject: [4-1]   Commercial Common Lisp implementations.
  278.  
  279.    Allegro Common Lisp 4.2 runs on a variety of platforms, including
  280.    Sparcs, RS6000, HP700, Silicon Graphics, DecStation (prices start at
  281.    $4,500) and NeXT ($2,000). It requires 12mb RAM for the 680x0 and 16mb
  282.    for RISC. It includes native CLOS, X-windows support, Unix interface,
  283.    incremental compilation, generational garbage collection, and a
  284.    foreign function interface.  Options include Allegro Composer
  285.    (development environment, including debugger, inspector, object
  286.    browser, time/space code profiler, and a graphical user interface,
  287.    $1,500), Common LISP Interface Manager (CLIM 2.0 is a portable
  288.    high-level user interface management system.  CLIM 2.0 for Allegro
  289.    CL supports both Motif and Openlook, $1,000) and Allegro CLIP
  290.    (a parallel version of Lisp for the Sequent).  Franz also markets
  291.    Allegro CL\PC for Windows 3.1 for $995 (discount prices of $595 are
  292.    sometimes advertised in various AI magazines). Allegro CL\PC provides 32-bit
  293.    compilation, complete CLOS, an integrated development environment,
  294.    interface to the Windows API, DLL support, and free runtime delivery.
  295.    Write to: Franz Inc., 1995 University Avenue, Berkeley, CA 94704 or
  296.    call 1-800-333-7260, 510-548-3600, fax 510-548-8253, telex 340179
  297.    WUPUBTLXSFO. Bug reports can be mailed to bugs@franz.com.  Questions
  298.    about Franz Inc. products (e.g., current and special pricing) can be
  299.    sent to info@franz.com. To receive Franz Flash, Franz's electronic
  300.    newsletter, send mail to flash@franz.com. The Franz Forum bboard is
  301.    accessible by telnet to franzforum.franz.com. Files related to the
  302.    bboard (e.g., patches, Franz's GNU-Emacs/Lisp interface, the Allegro FAQ)
  303.    are available by anonymous ftp from
  304.       ftp.uu.net:/vendor/franz/ [192.48.96.9]
  305.  
  306.    CLOE (Common Lisp Operating Environment) is a cross-development
  307.    environment for IBM PCs (MSDOS) and Symbolics Genera. It includes
  308.    CLOS, condition error system, generational garbage collection,
  309.    incremental compilation, code time/space profiling, and a stack-frame
  310.    debugger. It costs from $625 to $4000 and requires 4-8mn RAM and a 386
  311.    processor.  Write to: Symbolics, 6 New England Tech Center, 
  312.    521 Virginia Road, Concord, MA 01742, call 1-800-394-5522 or 
  313.    508-287-1000 or fax 508-287-1099. 
  314.  
  315.    Golden Common Lisp (GCLisp) runs on IBM PCs under DOS and Windows,
  316.    costing $2,000 ($250 extra for Gold Hill Windows), and includes an
  317.    incremental compiler, foreign function interface, interactive
  318.    debugger, and emacs-like editor. It supports DDE and other Windows
  319.    stuff, and is CLtL1 compatible.  Supports PCL. It requires 4mb RAM,
  320.    and 12mb disk. See a review in PC-WEEK 4/1/91 comparing GCLisp with
  321.    an older version of MCL.  Write to: Gold Hill Computers, 26 Landsdowne
  322.    Street, Cambridge, MA 02139, call 617-621-3300, or fax 617-621-0656.
  323.  
  324.    Harlequin Lispworks runs on a variety of Unix platforms, including
  325.    Sun3/Sun4, Sparc, RS/6000, DEC/MIPS, DEC Alpha (OSF), Intergraph
  326.    C300 and C400, HP400, HP700, SGI, and Sparc clones. A cross compiler is
  327.    available that will produce run-time images that run on 386/486
  328.    DOS/Window 3.1 platforms. It is a full graphical Common Lisp
  329.    environment, with a fully implemented Prolog compiler and SQL interface.
  330.    Common Lisp: CLtL2 compatible, native CLOS/MOP, generational GC,
  331.         Fortran/C/C++ interface.
  332.    Environment : Prolog, Emacs-like editor/listener/shell, defadvice,
  333.         defsystem, cross-referencing, lightweight processes,
  334.         debugger, mail reader, extensible hypertext online doc, LALR
  335.         parser generator.
  336.    Browsers/graphers: files, objects, classes, generic functions,
  337.         source code systems, specials, compilation warnings.
  338.    Graphics: CLX, CLUE, Toolkit, CLIM, Open Look, Motif, interface
  339.         builder, program visualization.
  340.    Integrated Products: KnowledgeWorks (RETE engine)
  341.    Write to: Harlequin Inc. One Cambridge Center, Cambridge, MA 02142,
  342.    call 800-WORKS-4-YOU (800-967-5749; 617-374-2400/617-252-0052), fax
  343.    617-252-6505 or send email to works@harlequin.com or sm@harlequin.com
  344.    or lou@harlequin.com. European customers should write to Harlequin
  345.    Limited, Barrington Hall, Barrington, Cambridge, CB2 5RG, call
  346.    0223-872-522/873-800 (or 44-223-872-522/873-800 outside UK), telex
  347.    818440 harlqn g, fax 0223-872-519, or send email to ai@harlqn.co.uk or
  348.    works@harlqn.co.uk ("harlqn" and "harlequin" should be
  349.    interchangeable). Further information on Harlequin's Lisp products may
  350.    be obtained by sending mail to lispworks-request@harlequin.co.uk or
  351.    lispworks-request@harlequin.com.
  352.  
  353.    Ibuki Common Lisp is a commercialized and improved version of Kyoto
  354.    Common Lisp. It runs on over 30 platforms, including Sun3, Sparc, Dec
  355.    (Ultrix), Apollo, HP 9000, IBM RS/6000, Silicon Graphics and IBM PCs.
  356.    It includes an incremental compiler, interpreter, foreign function
  357.    interface. It generates C code from the Lisp and compiles it using the
  358.    local C compiler.  Image size is about 3mb. Cost is $2800 (workstations),
  359.    $3500 (servers), $700 (IBM PCs). Supports CLOS and CLX ($200 extra). 
  360.    Source code is available at twice the cost. Ibuki now also has a product 
  361.    called CONS which compiles Lisp functions into linkable Unix libraries.
  362.    Write to: Ibuki Inc., PO Box 1627, Los Altos, CA 94022, or call
  363.    415-961-4996, fax 415-961-8016, or send email to Richard Weyhrauch, 
  364.    rww@ibuki.com or support@ibuki.com.
  365.  
  366.    Lucid Common Lisp runs on a variety of platforms, including PCs (AIX),
  367.    Apollo, HP, Sun-3, Sparc, IBM RT, IBM RS/6000, Decstation 3100,
  368.    Silicon Graphics, and Vax, and costs $2500 (IBM PCs), $4400 (other
  369.    platforms). Lucid includes native CLOS, a foreign function interface,
  370.    and generational garbage collection.  CLIM is available for Lucid as
  371.    a separate product. Write to Lucid Inc., 707 Laurel Street, Menlo Park,
  372.    CA 94025, call toll free 800-225-1386 (or 800-843-4204), 415-329-8400,
  373.    fax 415-329-8480, or email to sales@lucid.com for information on pricing, 
  374.    product availability, etc. Technical questions may be addressed to
  375.    customer-support@lucid.com. See also the comments in question [1-2]
  376.    on the wizards.doc file that comes with the release.
  377.  
  378.    Macintosh Common Lisp (MCL 2.0) runs on the Apple Macintosh (Mac+ or
  379.    higher with 4mb RAM and system software 6.0.4 or later or AUX 3.0) and
  380.    is available from APDA for $495. It includes a native CLOS Macintosh
  381.    Toolbox/interface toolkit, ephemeral garbage collection, incremental
  382.    compiler, window-based debugger, source-code stepper, object
  383.    inspector, emacs-style editor, and a foreign function interface.
  384.    Bug reports should be sent to bug-mcl@cambridge.apple.com. With
  385.    MCL version 2.0, Apple has started distributing a CD-ROM which
  386.    contains, among other things, a large collection of Lisp code,
  387.    complete MCL manuals in an online-browser format, the CLIM 1.0 manual
  388.    in TeX and postscript, and copies of Gambit 1.8 Scheme, SIOD 2.8
  389.    Scheme, Pixie Scheme, and a demo version of MacScheme. For more
  390.    information, write to: APDA, Apple Computer Inc., 20525 Mariani
  391.    Avenue, MS 33-G, Cupertino, CA 95014-6299 or call toll free
  392.    1-800-282-2732 (US), 1-800-637-0029 (Canada), 1-716-871-6555. Their
  393.    fax number is 1-716-871-6511 and their telex is 171-576. Email may
  394.    also be sent to APDA@applelink.apple.com or 76666.2405@compuserve.com.
  395.    CLIM for MCL is available for $495 as a separate product from
  396.    Lucid, Inc., 707 Laurel Street, Menlo Park, CA 94025 U.S.A.,
  397.    415-329-8400, fax: 415-329-8480, <sales@lucid.com>.
  398.    
  399.    Medley is a Common Lisp development environment that includes a native
  400.    CLOS w/MOP, window toolkit, window-based debugger, incremental
  401.    compiler, structure editor, inspectors, stepper, cross-referencer,
  402.    code analysis tools, and browsers. It is the successor to InterLisp-D.
  403.    It runs on a variety of platforms, including Suns, DecStations,
  404.    386/486s, IBM RS/6000, MIPS, HP, DEC Alpha, and Xerox 1186. Medley also runs
  405.    under DOS and will shortly be available on the Macintosh too.
  406.    Developer version costs $995 and run-time version $300.
  407.    Instructional costs $250/copy or $1250 site license.  Write to: Venue,
  408.    1549 Industrial Rd, San Carlos, CA 94070, call 800-228-5325,
  409.    415-508-9672, fax 415-508-9770, or email
  410.    aisupport.mv@envos.xerox.com.
  411.  
  412.    muLISP-90 is a small Lisp which runs on IBM PCs (or the HP 95LX
  413.    palmtop), MS-DOS version 2.1 or later. It isn't Common Lisp, although
  414.    there is a Common Lisp compatibility package which augments muLISP-90
  415.    with over 450 Common Lisp special forms, macros, functions and control
  416.    variables. Includes a screen-oriented editor and debugger, a window
  417.    manager, an interpreter and a compiler. Among the example programs is
  418.    DOCTOR, an Eliza-like program. The runtime system allows one to create
  419.    small EXE or COM executables. Uses a compact internal representation
  420.    of code to minimize space requirements and speed up execution. The
  421.    kernel takes up only 50k of space. Costs $150. muLISP-XM is a version
  422.    of muLISP-90 that can take advantage of up to 4 gigabytes of extended
  423.    memory and costs $300.  Write to Soft Warehouse, Inc., 3660 Waialae
  424.    Avenue, Suite 304, Honolulu, HI 96816-3236, call 808-734-5801, or fax
  425.    808-735-1105.
  426.  
  427.    NanoLISP is a Lisp interpreter for DOS systems that supports a
  428.    large subset of the Common Lisp standard, including lexical and
  429.    dynamic scoping, four lambda-list keywords, closures, local functions,
  430.    macros, output formatting, generic sequence functions, transcendental
  431.    functions, 2-d arrays, bit-arrays, sequences, streams, characters
  432.    double-floats, hash-tables and structures. Runs in DOS 2.1 or higher,
  433.    requiring only 384k of RAM. Cost is $100. Write to: Microcomputer Systems
  434.    Consultants, PO Box 6646, Santa Barbara, CA 93160 or call 805-967-2270.
  435.  
  436.    Poplog Common Lisp is an integrated Lisp/Prolog environment with an
  437.    incremental compiler. It runs on a variety of platforms, including
  438.    Unix ($749), Sparc ($4500), Macintosh AUX ($749), and VAX/VMS
  439.    ($4500). There are no run-time fees. Write to: Computable Functions, Inc., 
  440.    35 South Orchard Drive, Amherst, MA 01002, call 413-253-7637, or fax
  441.    413-545-1249. 
  442.  
  443.    Procyon Common Lisp runs on either the Apple Macintosh or IBM PC (386/486
  444.    or OS/2 native mode), costing 450 pounds sterling ($675) educational,
  445.    1500 pounds ($2250) commercial. It requires 2.5mb RAM on the Macintosh
  446.    and 4mb RAM on PCs (4mb and more than 4mb recommended respectively).  It
  447.    is a full graphical environment, and includes a native CLOS with
  448.    meta-object protocol, incremental compilation, foreign function
  449.    interface, object inspector, text and structure editors, and debugger.
  450.    Write to: Scientia Ltd., St. John's Innovation Centre, Cowley Road,
  451.    Cambridge, CB4 4WS, UK, with phone +44-223-421221, fax +44-223-421218.
  452.    E-mail: 100142.341@compuserve.com.
  453.    [NOTE: The rights to the MS Windows version of Procyon were sold to
  454.     Franz who are marketing and developing it as Allegro CL\PC. See
  455.     Allegro's entry for more information. The MS Windows version of
  456.     Procyon is no longer available from Scientia. Expertelligence no
  457.     longer distributes any version of Procyon.]
  458.  
  459.    Software Engineer is a Lisp for Windows that creates small stand-alone
  460.    executables. It is a subset of Common Lisp, but includes CLOS. It
  461.    requires 2mb RAM, but can use up to 16mb of memory, generating 286
  462.    specific code. It costs $250.  Write to: Raindrop Software, 833
  463.    Arapaho Road, Suite 104, Richardson, TX 75081, call 214-234-2611, 
  464.    fax 214-234-2674, or send email to 70632.3126@compuserve.com.
  465.  
  466.    Star Sapphire Common LISP provides a subset of Common Lisp and includes
  467.    an emacs-like editor, compiler, debugger, DOS graphics and CLOS. It
  468.    runs on IBM PCs (MSDOS), requires 640k RAM, a hard disk, and costs $100.  
  469.    Write to: Sapiens Software Corporation, PO Box 3365,
  470.    Santa Cruz, CA 95063-3365, call 408-458-1990, or fax 408-425-0905/9220.
  471.    Copies may also be ordered from the Programmers' Shop at 800-421-8006. 
  472.    Sapiens Software also has a Lisp-to-C translator in beta-test.
  473.  
  474.    Top Level Common Lisp includes futures, a debugger, tracer, stepper,
  475.    foreign function interface and object inspector.  It runs on Unix
  476.    platforms, requiring 8mb RAM, and costs $687.  Write to: Top Level,
  477.    100 University Drive, Amherst, MA 01002, call (413) 549-4455, or fax
  478.    (413) 549-4910.
  479.  
  480. Lisps which run on special-purpose hardware (Lisp Machines) include
  481.    o  Symbolics           1-800-394-5522 (508-287-1000)   fax 508-287-1099
  482.       6 New England Tech Center, 521 Virginia Road, Concord MA 01742
  483.       In Germany: Symbolics Systemhaus GmbH, Mergenthalerallee 77,
  484.          65760 Eschborn, (49) 6196-47220, fax (49) 6196-481116.
  485.    o  TI Explorers 
  486.          Texas Instruments Incorporated, Data Systems Group, 
  487.          P.O. Box 181153 DSG-230, Austin, Texas 78718
  488.    o  Xerox Interlisp.    See Medley above.
  489.  
  490. ----------------------------------------------------------------
  491. Subject: [4-1a] Lisp to C translators
  492.  
  493. Lisp-to-C Translator translates Common Lisp into ANSI C.  Release 3.2
  494. supports such features as CLOS, the condition system, Lisp type declaration
  495. heeding, and Mac, Windows, and Alpha compatibility.  (Release 3.0,
  496. introduced in 1992, eliminated the old requirement that the garbage 
  497. collector had to be called explicitly).  Works with Lucid, Symbolics, 
  498. Allegro, Harlequin and MCL.  It costs $12,000.  Write to: Chestnut Software, 
  499. Inc., 2 Park Plaza, Suite 205, Boston, MA, 02116,  call 617-542-9222,
  500. fax 617-542-9220, or e-mail Mr. Kenneth J. Koocher <ken@chestnut.com>.
  501.  
  502. Some Lisp compilers (AKCL, Ibuki) and Scheme compilers (Bigloo,
  503. Hobbit/SCM, Scheme->C) compile into C.
  504.  
  505. ----------------------------------------------------------------
  506. Subject: [4-2] Scheme Implementations
  507.  
  508. Scheme implementations are listed in the Scheme FAQ posting,
  509.  
  510. Free Scheme implementations include PC-Scheme, PCS/Geneva, MIT Scheme (aka
  511. C-Scheme), SCM, Hobbit, Gambit, T, Oaklisp, Elk, Scheme->C, SIOD
  512. (Scheme in One Defun), XScheme, Fools' Lisp, Scheme48, UMB Scheme,
  513. VSCM, Pixie Scheme, HELP (a lazy Scheme), Similix, FDU Scheme,
  514. PseudoScheme, Scheme84 and Scheme88.
  515.  
  516. Commercial Scheme implementations include Chez Scheme, MacScheme, and EdScheme.
  517.  
  518. Of the free Scheme implementations, the following are implemented in Lisp:  
  519.  
  520.    Peter Norvig's book "Paradigms of AI Programming" has a chapters about
  521.    Scheme interpreters and compilers, both written in Common Lisp. The
  522.    software from the book is available by anonymous ftp from
  523.    unix.sri.com:/pub/norvig and on disk in Macintosh or DOS format from
  524.    the publisher, Morgan Kaufmann.  For more information, contact: Morgan
  525.    Kaufmann, Dept. P1, 2929 Campus Drive, Suite 260, San Mateo CA 94403,
  526.    or call Toll free tel: (800) 745-7323; FAX: (415) 578-0672
  527.  
  528.    PseudoScheme is available free by anonymous ftp from
  529.       altdorf.ai.mit.edu:/archive/pseudo/pseudo-2-8.tar.Z [18.43.0.152]
  530.    It is Scheme implemented on top of Common Lisp, and runs in Lucid,
  531.    Symbolics CL, VAX Lisp under VMS, and Explorer CL. It should be easy
  532.    to port to other Lisps. It was written by Jonathan Rees
  533.    (jar@altdorf.ai.mit.edu, jar@cs.cornell.edu). Send mail to
  534.    info-clscheme-request@mc.lcs.mit.edu to be put on a mailing list for
  535.    announcements. Conforms to R3RS except for lacking a correct
  536.    implementation of call/cc. It works by running the Scheme code through
  537.    a preprocessor, which generates Common Lisp code.
  538.  
  539.    Scheme84 is in the public domain, and available by mail from Indiana
  540.    University. It runs on the VAX in Franz Lisp under either VMS or BSD Unix.
  541.    To receive a copy, send a tape and return postage to: Scheme84
  542.    Distribution, Nancy Garrett, c/o Dan Friedman, Department of Computer
  543.    Science, Indiana University, Bloomington, Indiana. Call 1-812-335-9770
  544.    or send mail to nlg@indiana.edu for more information. 
  545.  
  546.    Scheme88 is a re-implementation of Scheme84 to run in Common Lisp. It
  547.    available by anonymous ftp from
  548.       rice.edu:/public/scheme88.sh
  549.    and also from the Scheme Repository.
  550.  
  551. ----------------------------------------------------------------
  552. Subject: [4-4]   Free Implementations of Other Lisp Dialects
  553.  
  554. Franz Lisp:
  555.  
  556.    [Franz Lisp is a dialect of Lisp that predates Common Lisp. It is
  557.    very similar to MacLisp. It lacks full lexical scoping.]
  558.  
  559.    The official archive site for Franz List Opus 38.92 and 38.93b (the
  560.    last public domain releases) is
  561.        ftp.cs.cmu.edu:/user/ai/lang/others/franzlsp/
  562.    It includes the official version from the ucbvax ftp site before
  563.    its demise, Barry Schein's port of 38.92, the UC Davis port of 38.92,
  564.    and Jeff Dalton's port of 38.92 (see below). For more information, 
  565.    contact ai+franzlsp@cs.cmu.edu.
  566.  
  567.    An implementation of (Berkeley) Franz Lisp Opus 38.92 for 386/486
  568.    machines running NetBSD 0.9 (and possibly also 386BSD and FreeBSD)
  569.    is available by anonymous ftp from 
  570.       macbeth.cogsci.ed.ac.uk:/pub/franz-for-NetBSD/
  571.    The implementation generates C code and hence is quite portable. It
  572.    has been tested on 68K Suns, VAX 750s, and ICL Perqs running PNX.
  573.    A reference manual is included in the distribution. For more
  574.    information, write to Jeff Dalton <J.Dalton@ed.ac.uk>.
  575.  
  576.    PC LISP is a Lisp interpreter for IBM PCs (MSDOS) available from any
  577.    site that archives the group comp.binaries.ibm.pc, such as
  578.       wuarchive.wustl.edu:/mirrors/msdos/lisp/pclisp30.zip 
  579.    PC-LISP is a Franz LISP dialect and is by no means Common LISP
  580.    compatible. It is also available directly from the author by sending
  581.    2 blank UNFORMATTED 360K 48TPI IBM PC diskettes, a mailer and
  582.    postage to: Peter Ashwood-Smith, 8 Du Muguet, Hull, Quebec, CANADA,
  583.    J9A-2L8; phone 819-595-9032 (home). Source code is available from the
  584.    author for $15.
  585.  
  586. EuLisp:
  587.  
  588.    Feel (Free and Eventually Eulisp) is an initial implementation of the
  589.    EuLisp language. It can be retrieved by anonymous FTP from
  590.       ftp.bath.ac.uk:/pub/eulisp/ 
  591.    as the file feel-0.75.tar.Z. feel-0.75.sun4.Z is the Sparc executable.
  592.    The EuLisp language definition is in the same directory.  Feel is also
  593.    available from
  594.       ftp.gmd.de:/languages/lisp/eulisp/ [129.26.8.84] 
  595.    It includes an integrated object system, a module system, condition
  596.    system, and support for parallelism (threads). EuLisp (European
  597.    Lisp) is sort of like an extended Scheme.  The program is a C-based
  598.    interpreter, and a bytecode interpreter/compiler will be available
  599.    sometime soon.  The distribution includes an interface to the PVM
  600.    library, support for TCP/IP sockets, and libraries for futures, Linda,
  601.    and CSP.  Feel is known to run on Sun3, Sun4, Stardent Titan, Alliant
  602.    Concentrix 2800, Orion clippers, DEC VAX, DECstation 3000, Gould
  603.    UTX/32, and Inmos T800 transputer (using CS-Tools). (All bar the last
  604.    four have a threads mechanism.) It can run in multi-process mode on
  605.    the first three machines, and hopefully any other SysV-like machine
  606.    with shared memory primitives. Porting Feel to new machines is
  607.    reasonably straightforward. It now also runs on MS-DOS machines.
  608.    Written by Pete Broadbery <pab@maths.bath.ac.uk>.
  609.  
  610.    Apply/Eu2C is an EuLisp->C compiler available from ISST.  Eu2C runs on
  611.    top of Franz Allegro CL 4.1 and compiles EuLisp-Modules into C source
  612.    code which then must be compiled by an ANSI C-compiler (currently only
  613.    GCC is supported).  The Eu2C implementation provides EuLisp 0.99
  614.    level-0, with the exception of concurrency. Future versions of Eu2C
  615.    will include a C interface and straight module compilation.  The
  616.    development of Apply/Eu2C was supported by the German Federal Ministry
  617.    for Research and Technology (BMFT) within the joint project APPLY. The
  618.    partners of this project are the Christian Albrechts University Kiel,
  619.    the Fraunhofer Institute for Software Engineering and Systems
  620.    Engineering (ISST), the German National Research Center for Computer
  621.    Science(GMD), and VW-Gedas.  The main goal of APPLY project is to
  622.    develop a Lisp system which consistently supports the efficient
  623.    execution of applications and simplifies their integration into
  624.    current software environments.  Towards that end, ISST is
  625.    investigating strategies for the compilation of EuLisp-Modules into
  626.    efficient stand-alone C-Programs. The Eu2C compiler is the first step
  627.    along this path. Eu2C is available by anonymous ftp from
  628.    ftp.isst.fhg.de:/APPLY/Distribution/.  Please send bug reports and
  629.    comments to ulrich.kriegel@isst.fhg.de or ingo.mohr@isst.fhg.de. If
  630.    you're using Eu2C, please send them a message with "Apply/Eu2C" in the
  631.    subject line to be added to the mailing list of users.
  632.  
  633.    More information about EuLisp may be found in 
  634.       Lisp and Symbolic Computation 6(1-2), August 1993
  635.    which was devoted to EuLisp.
  636.  
  637. JLISP:
  638.    jlisp is a lisp interpreter designed to be used as an embedded
  639.    interpreter and is easily interfaced with C/C++.  jlisp is easily
  640.    extended. It is available by anonymous ftp from
  641.       ftp.ee.rochester.edu:/pub/weisberg/jlisp-1.03.tar.gz
  642.    For more information, write to Jeff Weisberg <weisberg@ee.rochester.edu>
  643.  
  644. ----------------------------------------------------------------
  645. Subject: [4-5]   Commercial Implementations of Other Lisp Dialects
  646.  
  647.    Franz Lisp 2.0 runs on the Apple Macintosh, requiring 1mb RAM for the
  648.    interpreter ($99) and 2.5mb RAM for the compiler ($199).  Student prices
  649.    are $60 for the interpreter and $110 for the interpreter and compiler.
  650.    Includes editor and language reference manual. Complete sources are
  651.    available for $649. The ALJABR symbolic mathematics system costs $249.
  652.    Write to:  Fort Pond Research, 15 Fort Pond Road, Acton, MA 01720,
  653.    call 1-508-263-9692, or send mail to order@fpr.com.
  654.  
  655.    Le-Lisp includes a compiler, color and graphic output, a debugger, a
  656.    pretty printer, performance analysis tools, tracing, and incremental
  657.    execution. Le-Lisp currently runs on Unix, VMS, and Windows 3.1.  Note
  658.    that Le-Lisp is neither Common Lisp nor Scheme.  Le-Lisp was
  659.    originally developed in 1980 at Inria, the French national computer
  660.    science laboratory, by a team led by Jerome Chailloux for work on VLSI
  661.    design. It was based on several earlier Lisps in the MacLisp family,
  662.    but was not directly derived from MacLisp.  Le-Lisp enjoyed a large
  663.    success in the French academic world because it was small, fast, and
  664.    portable, being based on a abstract machine language called LLM3.  In
  665.    1983, for example, Le-Lisp ran on Z-80 machines running CP/M. In 1987,
  666.    Ilog was formed as an offshoot of Inria to commercialize and improve
  667.    Le-Lisp and several products which had been developed with it,
  668.    including a portable graphic interface system and an expert system
  669.    shell.  Since then, Ilog has continued to grow and expand the use of
  670.    Le-Lisp into industrial markets around the world.  Ilog is the largest
  671.    European Lisp vendor, and continues to develop new products and
  672.    markets for Lisp.  In 1992, Ilog released the next major version of
  673.    Le-Lisp, Le-Lisp version 16.  This version modernizes Le-Lisp for use
  674.    in the industrial world, adding lexical closures and
  675.    special-form-based semantics for static analysis, a new object system
  676.    based on the EuLisp object system (TELOS), an enhanced module system
  677.    for application production, a conservative GC for integration with C
  678.    and C++, and compilation to C for portability and efficiency on a wide
  679.    range of processors.  For pricing and other information, write to
  680.    ILOG, 2 Avenue Gallieni, BP 85, 94253 Gentilly Cedex, France, call
  681.    33-1-46-63-66-66, fax 33-1-46-63-15-82, or send email to Jerome
  682.    Chailloux (chaillou@ilog.fr).
  683.  
  684.    Clisp is a library of functions which extends the C programming
  685.    language to include some of the functionality of Lisp. Costs $349.
  686.    Write to Drasch Computer Software, 187 Slade Road, Ashford, CT 06278, 
  687.    or call or fax 203-429-3817.
  688.  
  689.    Two references in Dr. Dobb's journal on Lisp-style libraries for C
  690.    are: Douglas Chubb, "An Improved Lisp-Style Library for C", Dr. Dobb's
  691.    Jounral #192, September 1992, and Daniel Ozick, "A Lisp-Style Library
  692.    for C", Dr. Dobb's Journal #179:36-48, August 1991. Source is available by
  693.    ftp from various archives, including wuarchive.wustl.edu (MSDOSDDJMAG),
  694.    or ftp.mv.com:/pub/ddj, or the DDJ Forum on Compuserve.
  695.  
  696.    Lily (LIsp LibrarY) is a C++ class library that lets C++ programmers
  697.    write LISP-style code. Includes some example programs from Winston's
  698.    Lisp book recoded in Lily. Most or all of chapters 17 (Symbolic
  699.    Pattern Matching), 18 (Expert Problem Solving), and 23 (Lisp in Lisp)
  700.    are implemented in the examples. Lily works with GNU G++ (2.4.5) and
  701.    Turbo C++ for Windows. Lily is available by anonymous ftp from
  702.      sunsite.unc.edu:/pub/packages/development/libraries/ [152.2.22.81]
  703.    as lily-0.1.tar.gz. This site is fairly slow; a copy is available from
  704.    the Lisp Utilities collection. For more information, contact 
  705.    Roger Sheldon <sheldon@kong.gsfc.nasa.gov>.
  706.  
  707.  
  708. Other Lisps for PCs include: 
  709.  
  710.    o  UO-LISP from Calcode Systems, e-mail:calcode!marti@rand.org
  711.       It comes complete with compiler and interpreter, and is optimised for
  712.       large programs.  It is Standard LISP, not Common LISP. They are based
  713.       in Amoroso Place in Venice, CA. 
  714.  
  715.    o  LISP/88 v1.0. Gotten from Norell Data Systems, 3400 Wilshire Blvd,
  716.       Los Angeles, CA 90010, in 1983. They may or may not still exist. 
  717.  
  718.    o  IQLisp. Not a Common Lisp but still very good for PCs - you can
  719.       actually get a lot done in 640K.  The lisp itself runs in less than
  720.       128K and every cons cell takes only 6 bytes.  Unfortunately that
  721.       makes the 640K (maybe a little more, but certainly no more than 1M)
  722.       limit really hard. It has a byte code compiler which costs extra. 
  723.       This has support for all sorts of PC specific things.
  724.       It costs $175 w/o compiler, $275 with. 
  725.       Write to: Integral Quality, Box 31970, Seattle, WA 98103,
  726.       call Bob Rorschach, (206) 527-2918 or email rfr@franz.com. 
  727.  
  728. ----------------------------------------------------------------
  729. Subject: [4-6] What is Dylan?
  730.  
  731. Dylan is a new Object-Oriented Dynamic Language (OODL), based on
  732. Scheme, CLOS, and Smalltalk.  The purpose of the language is to retain
  733. the benefits of OODLs and also allow efficient application delivery.
  734. The design stressed keeping Dylan small and consistent, while allowing
  735. a high degree of expressiveness. Dylan is consistently object-oriented;
  736. it is not a procedural language with an object-oriented extension. A
  737. manual/specification for the language is available from Apple Computer.
  738. Send email to dylan-manual-request@cambridge.apple.com or write to
  739. Apple Computer, 1 Main Street, Cambridge, MA 02142.  Include your
  740. complete address and also a phone number (the phone number is
  741. especially important for anyone outside the US). Comments on Dylan can
  742. be sent to the internet mail address dylan-comments@cambridge.apple.com.
  743.  
  744. The mailing list info-dylan@cambridge.apple.com is for any and all
  745. discussions of Dylan, including language design issues, implementation
  746. issues, marketing issues, syntax issues, etc. The mailing list
  747. announce-dylan@cambridge.apple.com is for major announcements about
  748. Dylan, such as the availability of new implementations, new versions
  749. of the manual, etc.  This mailing list should be *much* lower volume
  750. than info-dylan.  Everything sent to this list is also sent to
  751. info-dylan.  The newsgroup comp.lang.dylan is gatewayed to the
  752. info-dylan mailing list.  
  753.  
  754. Send mail to the -request version of the list to be added to it.
  755. You can also send an email message to majordomo@cambridge.apple.com
  756. with "subscribe info-dylan" or "unsubscribe info-dylan" in the body,
  757. and likewise for the other lists, mutatis mutandis.
  758.  
  759. Apple hasn't announced plans to release Dylan as a product.  
  760.  
  761. The directory cambridge.apple.com:pub/dylan contains some documents
  762. pertaining to Dylan, including a FAQ list.
  763.  
  764. ======== THOMAS ========
  765.  
  766. Thomas is a compiler for a language that is compatible with the
  767. language described in the book "Dylan(TM) an object-oriented dynamic
  768. language" by Apple Computer Eastern Research and Technology, April
  769. 1992. Thomas was written at Digital Equipment Corporation's Cambridge
  770. Research Laboratory. Thomas is NOT Dylan(TM) and was built with no
  771. direct input, aid, assistance or discussion with Apple.
  772.  
  773. Thomas is available to the public by anonymous ftp at
  774.        crl.dec.com:/pub/DEC/Thomas
  775.        gatekeeper.pa.dec.com:/pub/DEC/Thomas
  776.        altdorf.ai.mit.edu:/archive/Thomas
  777.  
  778. The Thomas system is written in Scheme and runs under MIT's CScheme,
  779. DEC's Scheme->C, and Marc Feeley's Gambit.  It can run on a wide range
  780. of machines including the Macintosh, PC compatibles, Vax, MIPS, Alpha,
  781. and 680x0.  Thomas generates IEEE compatible Scheme code.
  782.  
  783. A ready-made version of Thomas 1.1 interpreter built upon MacGambit
  784. 2.0 as a double-clickable Macintosh application is available by
  785. anonymous ftp from cambridge.apple.com:/pub/dylan/gambit/ as
  786. the file thomas-1.1-interp.hqx.
  787.  
  788. For discussion of Thomas, send a note to
  789.    info-thomas-request@crl.dec.com 
  790. to be added to the mailing list. 
  791.  
  792. DEC CRL's goals in building Thomas were to learn about Dylan by
  793. building an implementation, and to build a system they could use to
  794. write small Dylan programs. As such, Thomas has no optimizations of
  795. any kind and does not perform well. 
  796.  
  797. The original development team consisted of:
  798.           Matt Birkholz (Birkholz@crl.dec.com)
  799.           Jim Miller (JMiller@crl.dec.com)
  800.           Ron Weiss (RWeiss@crl.dec.com)
  801. In addition, Joel Bartlett (Bartlett@wrl.dec.com), Marc Feeley
  802. (Feeley@iro.umontreal.ca), Guillermo Rozas (Jinx@zurich.ai.mit.edu)
  803. and Ralph Swick (Swick@crl.dec.com) contributed time and energy to the
  804. initial release.
  805.  
  806. ======== Marlais ========
  807.  
  808. Marlais is a simple interpreter for a language strongly resembling
  809. Dylan. It is available by anonymous ftp from
  810.    ftp.cis.ufl.edu:/pub/Marlais
  811.    cambridge.apple.com:/pub/dylan/Marlais
  812.    travis.csd.harris.com:/pub/ 
  813. Currently runs on i386 and i486 (OS/2 or Linux), IBM PC/RT, IBM
  814. RS/6000, HP9000/300, HP9000/700, DECstations (Ultrix), SGI (IRIX),
  815. Sony News, Apple Macintosh (A/UX), Sun3, Sun4, Vax (4.3bsd and
  816. ultrix), m88k (Harris Nighthawk running CX/UX), MIPS M/120, Sequent
  817. Symmetry, Encore Multimax.  Contact Joe Wilson <jnw@cis.ufl.edu> or
  818. Brent Benson <brent@ssd.csd.harris.com> for more information.
  819.  
  820. ================
  821.  
  822. The Gwydion Project at CMU is developing an innovative new software
  823. development environment based on the Dylan language (and, in the
  824. process, will make available a very high-quality implementation of
  825. Dylan). This project includes many of the same people responsible for
  826. CMU Common Lisp. (In Welsh mythology, Gwydion is the uncle of Dylan
  827. and nephew of Math.) A Mosaic page describing the project goals, how
  828. they fit in with the Dylan language, and copies of the Dylan language
  829. manual and latest approved design notes is available as
  830.    http://legend.gwydion.cs.cmu.edu:8001/gwydion/
  831. For more information, write to gwydion-group@cs.cmu.edu.
  832.  
  833. Mindy (Mindy Is Not Dylan Yet) is a Dylan-like language from the
  834. Gwydion Project. Mindy is intended for use as a development tool while
  835. work on the "real" high-performance Dylan implementation progresses.
  836. Mindy is available by anonymouse ftp from legend.gwydion.cs.cmu.edu as
  837. the file /afs/cs.cmu.edu/project/gwydion/release/mindy.tar.gz.
  838. Send bug reports to gwydion-bugs@cs.cmu.edu; support will be minimal.
  839.  
  840. ----------------------------------------------------------------
  841. Subject: [4-7] What is Pearl Common Lisp?
  842.  
  843. When Apple Computer acquired Coral Software in January 1989, they
  844. re-released Coral's Allegro Common Lisp and its optional modules as
  845. Macintosh Allegro Common Lisp (now just Macintosh Common Lisp).
  846. Coral's other product, Pearl Lisp, was discontinued at that time.
  847. Pearl Lisp provides a subset of the functionality of MACL 1.3 and is
  848. not even fully CLtL1-compatible (e.g., the implementation of defstruct is
  849. different).
  850.  
  851. Despite rumors to the contrary, Pearl Lisp is not and never was public
  852. domain. Nevertheless, Pearl Lisp and its documentation were placed in
  853. the "Moof:Goodies:Pearl Lisp" folder on the first pressing of "Phil
  854. and Dave's Excellent CD", the precursor to the current Apple
  855. Developer's CD-ROM series.  Apple removed Pearl from later versions of
  856. the developer CD-ROM distribution because of complaints from other
  857. Lisp vendors. If you own a copy of Pearl Lisp or a copy of this
  858. CD-ROM, you can make it runnable under System 7 with some slight
  859. modifications using ResEdit.  To repeat, Pearl Lisp is NOT public
  860. domain, so you must own a copy to use it.
  861.  
  862. To make it runnable, one needs to use ResEdit to make changes to the
  863. BNDL and FREF resources so that it will connect to its icons properly.
  864. This will make it respond to double-clicks in the normal manner and
  865. make it be properly linked to its files. Detailed instructions for
  866. modifying Pearl Lisp using ResEdit may be obtained from the Lisp
  867. Utilities Repository by anonymous ftp from 
  868.    ftp.cs.cmu.edu:/user/ai/lang/lisp/impl/pearl/ 
  869. as the file pearl.txt.
  870.  
  871. After you've made the changes, it will run under System 7 on 68000s
  872. and 68030s if you turn off 32-bit addressing. It seems to bomb on a
  873. Quadra.
  874.  
  875. If you need a more powerful Lisp or one that is compatible with the
  876. standard for Common Lisp, consider purchasing Macintosh Common Lisp.
  877.  
  878. ----------------------------------------------------------------
  879. Subject: [4-9] What Lisp-related discussion groups and mailing lists exist?
  880.      
  881. Before posting to any discussion group, please read the rest
  882. of this FAQ, to make sure your question isn't already answered. 
  883.  
  884. Scheme-related mailing lists and newsgroups are listed in the Scheme
  885. FAQ, and AI-related mailing lists and newsgroups are listed in the AI FAQ.
  886.      
  887. First of all, there are several Lisp-related newsgroups:
  888.    comp.lang.lisp          General Lisp-related discussions.
  889.                            See below for archive information.
  890.  
  891.    comp.lang.clos          Discussion related to CLOS, PCL, and
  892.                            object-oriented programming in Lisp.
  893.                            Gatewayed to commonloops@cis.ohio-state.edu.
  894.                            (or equivalently, comp.lang.clos@cis.ohio-state.edu)
  895.                            See below for info on the newsgroup's archives.
  896.  
  897.    comp.org.lisp-users     Discussions related to Association of Lisp Users.
  898.                            Gatewayed to the ALU mailing list. This is an
  899.                            organizational mailing list/newsgroup, not a 
  900.                            technical forum.
  901.  
  902.    comp.std.lisp           For discussion of emerging standards for
  903.                            the Lisp language, including "de facto" standards.
  904.                Moderated by Brad Miller <miller@cs.rochester.edu>.
  905.                            Submissions should be sent to 
  906.                              lisp-standards@cs.rochester.edu
  907.                            Archived on
  908.                               ftp.cs.rochester.edu:/pub/lisp-standards/
  909.                            Gatewayed to a mailing list (send mail to
  910.                            lisp-standards-request@cs.rochester.edu to join).
  911.  
  912.    comp.lang.lisp.mcl      Discussions related to Macintosh
  913.                            Common Lisp. This newsgroup is gatewayed
  914.                            to the info-mcl@cambridge.apple.com
  915.                            mailing list and archived on cambridge.apple.com.
  916.  
  917.    comp.lang.lisp.franz    Discussion of Franz Lisp, a dialect of Lisp.
  918.                            (Note: *not* Franz Inc's Allegro.)
  919.  
  920.    comp.lang.lisp.x        Discussion of XLISP, a dialect of Lisp, and XScheme.
  921.  
  922.    comp.sys.xerox          Discussions related to using Medley (name exists
  923.                            for historical reasons, and is likely to change
  924.                            soon). Gatewayed to the info-1100 mailing list.
  925.  
  926.    comp.sys.ti.explorer       TI Explorers Lisp machines.
  927.  
  928.    comp.windows.garnet     Garnet, a Lisp-based GUI.
  929.  
  930.    comp.ai and subgroups   General AI-related dicusssion.
  931.  
  932.  
  933. The newsgroup comp.lang.lisp is archived on 
  934.    ftp.gmd.de:/usenet/comp.lang.lisp/ [129.26.8.84]
  935. by month, from 1989 onward. Individual files are in rnews
  936. format. (They contain articles prefixed by a header line "#! rnews
  937. <nchars> archive" where <nchars> is the number of characters in the
  938. article following the header. That format is convenient for various
  939. news processing programs (e.g.  relaynews) and is rather easy to
  940. process from a lisp program too.)  A copy of the GMD archives for
  941. comp.lang.lisp is available on cambridge.apple.com:/pub/comp.lang.lisp/.
  942.  
  943.  
  944. We list several mailing lists below. In general, to be added to
  945. a mailing list, send mail to the "-request" version of the address.
  946. This avoids flooding the mailing list with annoying and trivial
  947. administrative requests. [To subscribe to info-mcl, info-dylan, or
  948. other mailing lists based at cambridge.apple.com, send a message to
  949. majordomo@cambridge.apple.com with "subscribe <list_name>" in the
  950. message body. Likewise use "unsubscribe <list_name>" to cancel your
  951. subscription and "help" to get help.]
  952.  
  953. General Lisp Mailing Lists:
  954.  
  955.    common-lisp@ai.sri.com          Technical discussion of Common Lisp.
  956.    lisp-utilities@cs.cmu.edu       Low volume moderated mailing list
  957.                    associated with the Lisp Utilities 
  958.                    Repository at CMU. (Also known as
  959.                                    cl-utilities@cs.cmu.edu)
  960.    lisp-faq@think.com              A mailing list concerning the contents
  961.                                    of this FAQ posting only.
  962.  
  963.    alu@freud.arc.nasa.gov       Forum for use by members (current
  964.                                    and prospective) of the Association
  965.                                    of Lisp Users. It is bidirectionally
  966.                                    gatewayed into the newsgroup
  967.                                    comp.org.lisp-users. This is an
  968.                                    organizational mailing list, 
  969.                                    not a technical forum.
  970.  
  971. Particular Flavors of Lisp:
  972.  
  973.    info-mcl@cambridge.apple.com    Macintosh Common Lisp. Gatewayed
  974.                                    to the comp.lang.lisp.mcl newsgroup.
  975.    info-mcl-digest@cambridge.apple.com  Automatically generated digest format
  976.                        version of the info-mcl mailing list.
  977.  
  978.    cmucl-bugs@cs.cmu.edu           CMU Common Lisp bug reports
  979.  
  980.    slug@ai.sri.com                 Symbolics Lisp Users Group
  981.                    Archived on warbucks.ai.sri.com and 
  982.                                    ftp.ai.sri.com:/pub/slug.
  983.  
  984.    allegro-cl@cs.berkeley.edu      Franz Allegro Common Lisp
  985.  
  986.    amiga-lisp@contessa.phone.net   Lisp on the Amiga
  987.  
  988.    kcl@cli.com                     Kyoto Common Lisp 
  989.                                    Archived in ftp.cli.com:/pub/kcl/kcl-mail-archive
  990.    kcl@rascal.ics.utexas.edu       Forwards to kcl@cli.com.
  991.  
  992.    lispworks@harlqn.co.uk          LispWorks
  993.  
  994.    clisp-list@ma2s2.mathematik.uni-karlsruhe.de   CLISP
  995.     To subscribe, send mail to listserv@ma2s2.mathematik.uni-karlsruhe.de
  996.     with "subscribe clisp-list <your full name>" in the message body.
  997.         Use "help" to get a help message back and "unsubscribe clisp-list"
  998.         to remove yourself from the list.
  999.  
  1000.    info-ti-explorer@sumex-aim.stanford.edu  TI Explorer Lisp Machine
  1001.    bug-ti-explorer@sumex-aim.stanford.edu  TI Explorer Lisp Machine
  1002.  
  1003.    info-1100@cis.ohio-state.edu    Xerox/Envos Lisp machine environment,
  1004.                                    InterLisp-D, and Medley. Gatewayed to
  1005.                                    the newsgroup comp.sys.xerox. Will be
  1006.                                    moving to info-1100@anzus.com.
  1007.  
  1008.    franz-friends@cs.berkeley.edu   The Franz Lisp Language.
  1009.    franz-composers@cs.berkeley.edu Maintainers of Franz Lisp.
  1010.  
  1011. Lisp Windowing Systems:
  1012.  
  1013.    cl-windows@ai.sri.com           Common Lisp Window System Discussions.
  1014.    bug-clx@expo.lcs.mit.edu        CLX (Common Lisp X Windows)
  1015.    clim@bbn.com                    Common Lisp Interface Manager
  1016.    clue-review@dsg.csc.ti.com      Common Lisp User-Interface Environment
  1017.    express-windows@cs.cmu.edu      Express Windows
  1018.    garnet-users@cs.cmu.edu         Garnet (send mail to garnet@cs.cmu.edu
  1019.                                    or garnet-request@cs.cmu.edu to be added)
  1020.    gina-users@gmd.de               GINA and CLM
  1021.    lispworks@harlequin.co.uk       LispWorks 
  1022.    winterp@netcom.com           WINTERP (OSF/Motif Widget INTERPreter)
  1023.    yyonx@csrl.aoyama.ac.jp         YYonX
  1024.  
  1025. Lisp Object-Oriented Programming:
  1026.    
  1027.    CommonLoops@cis.ohio-state.edu  (same as comp.lang.clos@cis.ohio-state.edu)
  1028.       Discussion related to CLOS, PCL, and object-oriented programming
  1029.       in Lisp.  The name is in honor of the first freely-available
  1030.       implementation of CLOS, Xerox PARC's Portable Common Loops, and
  1031.       was originally the mailing list for discussing that
  1032.       implementation.  Now gatewayed to the comp.lang.clos newsgroup.
  1033.       The mailing list is archived on nervous.cis.ohio-state.edu in
  1034.       the directory pub/lispusers/commonloops.  
  1035.       The CLOS code repository is in pub/lispusers/clos.
  1036.  
  1037. Miscellaneous:
  1038.  
  1039.    stat-lisp-news-request@umnstat.stat.umn.edu     
  1040.            Use of Lisp and Lisp-based systems in statistics. 
  1041.    Lisp-Jobs@cis.ohio-state.edu
  1042.     Job offers requiring a knowledge of Lisp. See [1-7].
  1043.  
  1044. Electronic Journals:
  1045.  
  1046.   Electronic Journal of Functional and Logic Programming (EJFLP)
  1047.  
  1048.      EJFLP is a refereed journal that will be distributed for free via e-mail.
  1049.      The aim of EJFLP is to create a new medium for research investigating the
  1050.      integration of the functional, logic and constraint programming paradigms.
  1051.  
  1052.      For instructions on submitting a paper, send an empty mail message with 
  1053.     Subject: Help
  1054.      to
  1055.         submissions@ls5.informatik.uni-dortmund.de. 
  1056.      You will receive an acknowledgment of your submission within a few hours.
  1057.  
  1058.      To subscribe to the journal, send an empty mail message to 
  1059.          subscriptions@ls5.informatik.uni-dortmund.de
  1060.      You will receive an acknowledgment of your subscription within
  1061.      a few days. 
  1062.  
  1063.      If there are any problems with the mail-server, send mail to
  1064.      ejflp.op@ls5.informatik.uni-dortmund.de. 
  1065.  
  1066.      The editorial board is: Rita Loogen (RWTH Aachen), Herbert Kuchen (RWTH
  1067.      Aachen), Michael Hanus (MPI-Saarbruecken), Manuel MT Chakravarty (TU
  1068.      Berlin), Martin Koehler (Imperial College London), Yike Guo (Imperial
  1069.      College London), Mario Rodriguez-Artalejo (Univ. Madrid), Andy Krall
  1070.      (TU Wien), Andy Mueck (LMU Muenchen), Tetsuo Ida (Univ. Tsukuba,
  1071.      Japan), Hendrik C.R. Lock (IBM Heidelberg), Andreas Hallmann (Univ.
  1072.      Dortmund), Peter Padawitz (Univ. Dortmund), Christoph Brzoska (Univ.
  1073.      Karlsruhe).
  1074.  
  1075.      
  1076. ----------------------------------------------------------------
  1077. Subject: [4-10] ANSI Common Lisp -- 
  1078.                 Where can I get a copy of the draft standard?
  1079.  
  1080. The first public review of the draft proposed American National
  1081. Standard (dpANS) for Common Lisp ended November 23, 1992. The second
  1082. public review of the draft will be held from February 4 through April 5, 1994.
  1083.  
  1084. Hard copies of the draft may be purchased from Global Engineering
  1085. Documents, Inc., 2805 McGaw Avenue, Irvine, CA  92714, 1-800-854-7179,
  1086. 714-261-1455 for a single copy price of $80 ($104 international).
  1087.  
  1088. Copies of the TeX sources and Unix-compressed DVI files may be
  1089. obtained by anonymous FTP from 
  1090.    parcftp.xerox.com:/pub/cl/ [13.1.64.94]
  1091. The files corresponding to the second Public Review of Common Lisp are
  1092. in the directory /pub/cl/dpANS2/*. These files correspond to draft
  1093. 14.10, also known as document X3J13/93-102, which was forwarded by
  1094. X3J13 to X3 in October, 1993. (The files from the first draft are in
  1095. the directory /pub/cl/document/*.) The draft is about 1500 pages long.
  1096. The file Reviewer-Notes.text should be read before ftping the other files.
  1097.  
  1098. There is no mechanism for submitting Public Review comments by e-mail.
  1099. Comments on the draft must be submitted in hard copy format BOTH to X3
  1100. Secretariat, Attn: Lynn Barra, 1250 Eye Street NW, Suite 200,
  1101. Washington, DC 20005-3922 AND to American National Standards Institute,
  1102. Attn: BSR Center, 11 West 42nd St. 13th Floor, New York, NY 10036.
  1103.  
  1104. The current ISO Lisp draft standard is available by anonymous FTP from 
  1105. ma2s2.mathematik.uni-karlsruhe.de:/pub/lisp/islisp/islisp-84.dvi
  1106. [129.13.115.2].
  1107. ----------------------------------------------------------------
  1108.  
  1109. ;;; *EOF*
  1110.  
  1111.  
  1112.